home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000053_fdc@columbia.edu_Thu Feb 17 09:54:39 2005.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: Communicating with legacy Kermit
  5. Date: 17 Feb 2005 14:54:10 GMT
  6. Organization: Columbia University
  7. Lines: 45
  8. Message-ID: <slrnd19c0i.i3n.fdc@sesame.cc.columbia.edu>
  9. References: <1108644666.679061.287940@c13g2000cwb.googlegroups.com>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1108652050 21514 128.59.59.56 (17 Feb 2005 14:54:10 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 17 Feb 2005 14:54:10 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15288
  17.  
  18. On 2005-02-17, Niki <niki.reid@acm.org> wrote:
  19. : I am trying to build a patch that will allow our old handheld PCs
  20. : (DEMOS 2.2, Kermit-80) to communicate with a PC and carry out data
  21. : transfers.
  22. :
  23. That's CP/M-80 2.2?  You can find documentation for Kermit-80 on our
  24. ftp site:
  25.  
  26.   ftp://kermit.columbia.edu/kermit/a/
  27.  
  28. Some of the relevant files are:
  29.  
  30.   cpkerm.txt   User manual (plain text)
  31.   cpkerm.ps    User manual (PostScript)
  32.   cpkerm.bwr   A series of "beware" (hints and tips) files.
  33.   cpkerm.bw2   ...
  34.   cpkerm.bw3   ...
  35.   cpkerm.bw4   ...
  36.  
  37. : I am currently working with the 21-day demo (I can't pay for it until I
  38. : know it will work!), and am getting nowhere fast.
  39. :
  40. : I need to figure out how to initiate the connection, so that the
  41. : handheld can send data from the buffer (i.e. the handheld has to be in
  42. : control).
  43. :
  44. : I've never used Kermit before, and am currently totally out of my
  45. : depth. I don't even know if Kermit 95 will communicate with Kermit 80!
  46. :
  47. It should.  In Kermit 95, do this:
  48.  
  49.   cd <desired-directory>
  50.   set port com1          ; or whatever
  51.   set speed 9600         ; or whatever else the handheld uses
  52.   set flow none          ; There's no flow control
  53.   set carrier-watch off  ; You'll probably need this
  54.   cautious               ; Use the most conservative file-transfer settings
  55.   server
  56.  
  57. Assuming you have your handheld connected to the PC with a null modem cable,
  58. now you should be able to tell Kermit-80 to SEND any file.  If it's a binary
  59. file, first tell Kermit-80 to SET FILE-MODE BINARY.  When you are finished,
  60. give Kermit-80 a BYE command.
  61.  
  62. - Frank